home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / MachineExceptions.idl < prev    next >
Text File  |  1996-05-01  |  2KB  |  74 lines

  1. /*
  2.      File:        MachineExceptions.idl
  3.  
  4.      Contains:    Processor Exception Handling Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __MACHINEEXCEPTIONS_IDL__
  19. #define __MACHINEEXCEPTIONS_IDL__
  20.  
  21. #include <somobj.idl>
  22. #include <somcls.idl>
  23.  
  24. #ifndef __TYPES_IDL__
  25. #include <Types.idl>
  26. #endif
  27.  
  28. #ifdef __SOMIDL__
  29.  
  30. #if FOR_SYSTEM7_AND_SYSTEM8_PREEMPTIVE
  31. /* Some basic declarations used throughout the kernel */
  32. typedef OpaquePtr                AreaID;
  33.  
  34. /* Machine Dependent types for PowerPC: */
  35. typedef SOMLargeStruct            MachineInformationPowerPC;    /* Derived from a struct of 64 bytes in size */
  36.  
  37. typedef SOMLargeStruct            RegisterInformationPowerPC;    /* Derived from a struct of 256 bytes in size */
  38.  
  39. typedef SOMLargeStruct            FPUInformationPowerPC;        /* Derived from a struct of 264 bytes in size */
  40.  
  41. /* Exception related declarations */
  42. typedef unsigned long            MemoryReferenceKind;
  43.  
  44. typedef SOMLargeStruct            MemoryExceptionInformation;    /* Derived from a struct of 16 bytes in size */
  45.  
  46. #if OLDROUTINENAMES
  47. #endif
  48. typedef unsigned long            ExceptionKind;
  49.  
  50. typedef SOMFourByteStruct        ExceptionInfo;                /* Derived from a struct of 4 bytes in size */
  51.  
  52. typedef SOMLargeStruct            ExceptionInformationPowerPC; /* Derived from a struct of 20 bytes in size */
  53.  
  54. typedef ExceptionInformationPowerPC ExceptionInformation;
  55.  
  56. typedef MachineInformationPowerPC MachineInformation;
  57.  
  58. typedef RegisterInformationPowerPC RegisterInformation;
  59.  
  60. typedef FPUInformationPowerPC    FPUInformation;
  61.  
  62. /*
  63.  Note:    An ExceptionHandler is NOT a UniversalProcPtr.
  64.             It must be a PowerPC function pointer with NO routine descriptor. 
  65. */
  66. typedef OpaquePtr ExceptionHandler;
  67. /* Routine for installing per-process exception handlers */
  68. #endif
  69.  
  70. #endif /* __SOMIDL__ */
  71.  
  72. #endif /* __MACHINEEXCEPTIONS_IDL__ */
  73.  
  74.